home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / rbcomm33.arc / BAREOPUS.MAC < prev    next >
Text File  |  1991-02-02  |  655b  |  27 lines

  1.  
  2. ; automatic logon routine
  3. AUTO    MULTI
  4.     BEEP              ; get user's attention that we've finally
  5.     PAUSE    6          ; made it onto the system
  6.     BEEP
  7.     TEXT    "\r"              ; get the BBS's attention
  8.     PAUSE    9
  9.     TEXT    "\r"
  10.     PAUSE    9
  11.     UNTIL    SUCCESS
  12.        {
  13.        TEXT    "\r"
  14.        WAITFOR 1 " "
  15.        }
  16.     WAITFOR 20 "ame:"         ; wait for login prompt
  17.     TEXT    "your name;y\r"   ; and send name
  18.     WAITFOR 10 "ord:"         ; wait for password prompt
  19.     PASSWORD          ; send the password defined in the directory
  20.     TEXT    "\r"              ; finish up password with a Return
  21.     WHEN    1 "ress E"        ; press Enter when asked
  22.       TEXT "\r"
  23.     END
  24.  
  25. #include "opus.mac"
  26.  
  27.